-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSolution.cpp
More file actions
54 lines (47 loc) · 1.1 KB
/
Solution.cpp
File metadata and controls
54 lines (47 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#include <iostream>
#define MAX 100
using namespace std;
int stack[MAX], top = -1;
void push() {
if (top == MAX - 1) {
cout << "Stack overflow!" << endl;
return;
}
int val;
cout << "Enter value to push: ";
cin >> val;
stack[++top] = val;
cout << val << " pushed onto stack." << endl;
}
void pop() {
if (top == -1) {
cout << "Stack underflow!" << endl;
return;
}
cout << stack[top--] << " popped from stack." << endl;
}
void display() {
if (top == -1) {
cout << "Stack is empty." << endl;
return;
}
cout << "Stack elements:" << endl;
for (int i = top; i >= 0; i--) {
cout << stack[i] << endl;
}
}
int main() {
int choice;
while (true) {
cout << "\n1. Push\n2. Pop\n3. Display\n4. Exit\n";
cout << "Enter your choice: ";
cin >> choice;
switch (choice) {
case 1: push(); break;
case 2: pop(); break;
case 3: display(); break;
case 4: return 0;
default: cout << "Invalid choice!" << endl;
}
}
}